home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / vidhandl / example.bat < prev    next >
DOS Batch File  |  1999-02-03  |  571b  |  24 lines

  1. @echo=off
  2. echo DOSFONT EXAMPLES
  3. echo CHOOSE ONE OF EXAMPLES (REQUIRES VGA OR BETTER VIDEO ADAPTER)
  4. echo 1 - LINEDRAW.FNT : Allows to draw menu lines with triple outline
  5. echo 2 - HANDSCR.FNT  : Handscript font.
  6. echo 3 - VOLTA.COM    : Restore default screen font.
  7. echo ESC - Exit
  8. choice /c:123 /n
  9. if errorlevel 4 goto end
  10. if errorlevel 3 goto volta
  11. if errorlevel 2 goto handscr
  12. if errorlevel 1 goto linedraw
  13. :linedraw
  14. fontsel linedraw /r /h16 /8 /a
  15. pause
  16. type moldura2.txt
  17. goto end
  18. :handscr
  19. fontsel handscr /r /h16 /8 /a
  20. goto end
  21. :volta
  22. volta
  23. :end
  24.